home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / exec / lists.inc < prev    next >
Text File  |  1998-06-24  |  215b  |  17 lines

  1. include "inc/exec/nodes.inc";
  2.  
  3. struct List is
  4.   lh_Head:ulong;
  5.   lh_Tail:ulong;
  6.   lh_TailPred:ulong;
  7.   lh_Type:ubyte;
  8.   l_pad:ubyte;
  9. ;
  10.  
  11. struct MinList is
  12.   mlh_Head:ulong;
  13.   mlh_Tail:ulong;
  14.   mlh_TailPred:ulong;
  15. ;
  16.  
  17.